From 2af42298c1b31039abac5633467c08fc609c723b Mon Sep 17 00:00:00 2001 From: Platonides Date: Thu, 3 Nov 2011 22:58:16 +0000 Subject: [PATCH] Follow-up r101808. Use canonical class name. --- includes/HttpFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/HttpFunctions.php b/includes/HttpFunctions.php index b16b841a5c..cbdcd7aece 100644 --- a/includes/HttpFunctions.php +++ b/includes/HttpFunctions.php @@ -857,7 +857,7 @@ class PhpHttpRequest extends MWHttpRequest { # Check security of URL $url = $this->getResponseHeader( "Location" ); - if ( !HTTP::isValidURI( $url ) ) { + if ( !Http::isValidURI( $url ) ) { wfDebug( __METHOD__ . ": insecure redirection\n" ); break; } -- 2.20.1